* {
    padding: 0;
    margin: 0;
    color: aliceblue;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    transition: all .5s ease-in-out;
    user-select: none;
    box-sizing: border-box;


}

body { 
    background-color: #1f1f1f;
    text-align: center;

    padding: 100px;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    gap: 40px;

    min-height: calc(100vh - 10px);
    border: 5px solid wheat;
    border-radius: 10px;
    
}
label, input{
    cursor: pointer;
}

h2 {
    font-size: 32px;
    user-select: none;
}

h2.pageTitle{
    text-decoration: underline;
    opacity: 0.7;
    color: wheat;
}

.borderMe{
    border: 1px solid wheat;
    border-top: none;
    border-bottom: none;
    color: wheat;
    text-decoration: underline;
    filter: blur(0px);
}


.section {
    border: 1px solid wheat;
    border-radius: 20px;
    padding: 20px;
    /* margin: 20px; */
    width: fit-content;
}
/* !   inputs    */
.inputs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    min-width: 50%;
    
    border-top: none;
    border-bottom: none;

}

input:focus {
    background-color: #2f2f322d;
    outline: wheat;
}

.inputsData {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 80%;
    font-size: large;

    border-radius: 10px;
}

label{
    color: rgba(255, 255, 255, 0.336);
}
label:hover {
    color: aqua;
}
input {
    padding: 4px;
    margin-top: 5px;
    border-radius: inherit;
    font-size: inherit;
    /* color: #1f1f1f; */
    color:wheat;
    /* background-color: rgba(245, 222, 179, 0.795); */
    background-color: #e7e9eb2d;
    outline-color: wheat;
    outline: none;
    text-align: center;
    width: 97%;

}

#add, .goPtn, #edit {
    color: #1f1f1f;
    padding: 4px;
    font-size: inherit;
    border-radius: inherit;
    cursor: pointer;
    width: 100px;
    border: none;

    transition: all .5s ease-in-out;
}

#add:hover ,.goPtn:hover , #edit:hover{
    width: 150px;
    background-color: aqua;
    background-color: wheat;
}


/* !   list    */
.list {
    margin-top: 100px;

    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;

    border-right: none;
    border-left: none;

    /* background-color: #e7e9eb2d; */
}
.box {
    background-color: #e7e9eb2d;
    padding: 20px;
    border-radius: 10px;
    width: 200px;
    transition: all .1s ease-in-out;

}


.box h2 {
    color: inherit;
    transition: all .2s ease-in-out;
}
.box:hover h2{
    color: aqua;
}


.box .taskCont{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    justify-content: space-between;
    /* align-items: center; */
    /* height: 500px; */
    /* gap: 10px; */
}

.box .item {
    background-color: #e7e9eb2d;
    padding: 5px;
    margin: 10px 0;
    border-radius: 5px;
    min-width: none;width: 100%;
    height: 30px;
    height: auto;
    cursor: grab;

    display: flex;
    justify-content: space-between;
    transition: .5s;
}

em {
    height: 50px;
    border-right: 1px solid wheat;
}
#date span:nth-child(odd){
    color: wheat;
}
#date span:nth-child(even){
    color: #e7e9eb9f;
}
.box .item:hover{
    background-color: #4d99e051;
    /* scale: 0.05; */
    /* rotate: -1deg; */
    /* width: 105%; */
}
.box .item:active{
    cursor: grabbing;
}

.box .item:hover p{
    color: rgb(0, 255, 140);
}
.box .item i{
height: fit-content;
margin: auto;
}
.box .item .trash:hover{
    color: rgb(255, 124, 124);
    color: rgb(71, 0, 0);
    rotate: 0.25turn;
    scale: 1.2;
    cursor:pointer;
}
